home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / litecom6.arc / LCLIB.EXE / LCTIME.H < prev    next >
Text File  |  1991-07-30  |  497b  |  23 lines

  1. /*
  2. ** lctime.h - Copyright 1991, Information Technology, Ltd.
  3. **              --All Rights Reserved--
  4. **              based upon concepts developed by TurboPower Software, Inc.
  5. */
  6.  
  7. typedef struct
  8. {
  9.     long    start_tics;
  10.     long    end_tics;
  11. } EVENT;
  12.  
  13. #define tics_day 1573040L        /* based on 18.20648 tics/sec */
  14. #define secs_day 86400L            /* seconds in one day */
  15.  
  16. #define ticsfreq 1675L
  17. #define secsfreq 92L
  18.  
  19. void newtimer_s(EVENT *et, int secs);
  20.  
  21. void newtimer(EVENT *, long);
  22. int check_timer(EVENT);
  23.